home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / NPP.PAK / FINDDLG.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  47 lines

  1. // finddlg.h : interface of the CFindDlg class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. //
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CFindDlg dialog
  16.  
  17. class CFindDlg : public CDialog
  18. {
  19. // Construction
  20. public:
  21.     CFindDlg(CWnd* pParent = NULL);   // standard constructor
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CFindDlg)
  25.     enum { IDD = IDD_FIND };
  26.     BOOL    m_bMatchCase;
  27.     CString    m_szText;
  28.     int m_nDirection;    // search direction 0=down, 1=up
  29.     //}}AFX_DATA
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CFindDlg)
  34.     protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. protected:
  40.     // Generated message map functions
  41.     //{{AFX_MSG(CFindDlg)
  42.     afx_msg void OnEditFindNext();
  43.     virtual BOOL OnInitDialog();
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.